Bump typedoc to ^0.28.18 to support TS6#508
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the TypeDoc devDependency to a newer patch release intended to enable compatibility with TypeScript 6.
Changes:
- Bump
typedocfrom^0.28.15to^0.28.18inpackage.json. - Regenerate
package-lock.jsonto reflect the updated TypeDoc version and its transitive dependency updates (e.g., shiki/markdown-it/minimatch/yaml).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updates the TypeDoc devDependency version to ^0.28.18. |
| package-lock.json | Updates the resolved TypeDoc version and related transitive dependency entries. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "typedoc": "^0.28.18", | ||
| "typescript": "^5.9.3" |
There was a problem hiding this comment.
PR title says this bump is to support TypeScript 6, but the repo’s devDependency is still pinned to typescript: ^5.9.3, so npm install in this repo won’t actually pick up TS 6.x. Either widen/bump the typescript devDependency to include 6.x (and ensure the build/lint/test scripts still pass), or adjust the PR title/description to clarify this is a preparatory bump for a follow-up TS upgrade.
No description provided.